/* 浙江盛裕信息技术有限公司首页样式 */
/* 自定义类和ID以zh_开头 */

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* 通用容器样式 */
  .zh_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* 主体内容区域 */
  .zh_main {
    overflow: hidden;
  }
  
  /* 橙色强调色 */
  .zh_text_orange {
    color: #386e34;
  }
  
  .zh_bg_orange {
    background-color: #386e34;
  }
  
  /* 按钮样式 */
  .zh_btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .zh_btn_primary {
    background: linear-gradient(135deg, #386e34, #3db135);
    color: #fff;
    box-shadow: 0 5px 15px #386e341d;
  }
  
  .zh_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #386e341d;
  }
  
  .zh_btn_outline {
    border: 2px solid #386e34;
    color: #386e34;
    background: transparent;
  }
  
  .zh_btn_outline:hover {
    background: #386e34;
    color: #fff;
  }
  
  /* 主视觉横幅区域 */
  .zh_hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #386e341d, #FFF);
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    margin-bottom: 80px;
  }
  
  .zh_hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, rgba(255, 122, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
  }
  
  .zh_hero_content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  
  .zh_hero_text {
    flex: 1;
    padding-right: 50px;
  }
  
  .zh_hero_subtitle {
    font-size: 18px;
    color: #386e34;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: #386e341d;
    border-radius: 50px;
  }
  
  .zh_hero_title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #222;
  }
  
  .zh_hero_description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
  }
  
  .zh_hero_buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .zh_hero_stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
  }
  
  .zh_stat_item {
    display: flex;
    flex-direction: column;
  }
  
  .zh_stat_number {
    font-size: 36px;
    font-weight: 700;
    color: #386e34;
    margin-bottom: 5px;
  }
  
  .zh_stat_label {
    font-size: 16px;
    color: #666;
  }
  
  .zh_hero_image {
    flex: 1;
    position: relative;
  }
  
  .zh_hero_img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  }
  
  /* 服务特点部分 */
  .zh_features {
    padding: 80px 0;
  }
  
  .zh_section_header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .zh_section_title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .zh_section_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #386e34, #3db135);
    border-radius: 4px;
  }
  
  .zh_section_subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .zh_features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .zh_feature_card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .zh_feature_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .zh_feature_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #386e341d;
    border-radius: 50%;
    margin: 0 auto 25px;
  }
  
  .zh_feature_icon svg {
    width: 40px;
    height: 40px;
    fill: #386e34;
  }
  
  .zh_feature_title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
  }
  
  .zh_feature_description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
  }
  
  /* 关于我们部分 */
  .zh_about {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .zh_about::before {
    content: '';
    position: absolute;
    left: -150px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #386e341d 0%, rgba(255, 122, 0, 0) 70%);
    border-radius: 50%;
  }
  
  .zh_about_container {
    display: flex;
    align-items: center;
    gap: 80px;
  }
  
  .zh_about_image {
    flex: 1;
    position: relative;
  }
  
  .zh_about_image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  }
  
  .zh_about_image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px dashed #386e34;
    border-radius: 20px;
    z-index: -1;
  }
  
  .zh_about_content {
    flex: 1;
  }
  
  .zh_about_title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    position: relative;
  }
  
  .zh_about_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #386e34, #3db135);
    border-radius: 4px;
  }
  
  .zh_about_description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .zh_about_list {
    list-style: none;
    margin-bottom: 40px;
  }
  
  .zh_about_item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 17px;
    color: #444;
  }
  
  .zh_about_item::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FF7A00' d='M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41-1.41L9,16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    margin-right: 10px;
  }
  
  /* 服务商展示部分 */
  .zh_providers {
    padding: 80px 0;
    background: linear-gradient(135deg, #386e341d, #FFF);
  }
  
  /* 系统定制模块（默认样式） */
  .zh_providers_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .zh_provider_card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .zh_provider_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .zh_provider_image {
    width: 100%;
    height:430px;
    object-fit: cover;
  }
  
  .zh_provider_content {
    padding: 25px;
  }
  
  .zh_provider_title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .zh_provider_description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    height: 80px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .zh_provider_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }
  
  .zh_provider_location {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #777;
  }
  
  .zh_provider_location svg {
    width: 16px;
    height: 16px;
    fill: #386e34;
    margin-right: 5px;
  }
  
  .zh_provider_button {
    font-size: 14px;
    color: #386e34;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .zh_provider_button:hover {
    color: #222;
  }
  
  /* 智慧办公模块 - 水平卡片布局 */
  .zh_providers_smart .zh_providers_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .zh_providers_smart .zh_provider_card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    border-left: 5px solid #386e34;
    height: 100%;
    overflow: hidden;
  }
  
  .zh_providers_smart .zh_provider_image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 0;
    object-fit: cover;
  }
  
  .zh_providers_smart .zh_provider_content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  
  .zh_providers_smart .zh_provider_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(56, 110, 52, 0.15);
    border-left-width: 8px;
  }
  
  .zh_providers_smart .zh_provider_title {
    color: #386e34;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .zh_providers_smart .zh_provider_description {
    height: 60px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .zh_providers_smart .zh_provider_footer {
    padding-top: 10px;
    margin-top: auto;
  }
  
  .zh_providers_smart .zh_provider_button {
    color: white;
    background-color: #386e34;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s ease;
  }
  
  .zh_providers_smart .zh_provider_button:hover {
    background-color: #2a5226;
    transform: translateX(3px);
    box-shadow: -3px 3px 10px rgba(56, 110, 52, 0.2);
  }
  
  .zh_providers_smart .zh_provider_location svg {
    fill: #386e34;
  }
  
  .zh_providers_smart .zh_section_title::after {
    background: linear-gradient(90deg, #386e34, #4a9644);
  }
  
  /* IOS项目模块 - 现代卡片布局 */
  .zh_providers_ios {
    background: linear-gradient(135deg, rgba(56, 110, 52, 0.05), rgba(56, 110, 52, 0.1));
  }
  
  .zh_providers_ios .zh_providers_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .zh_providers_ios .zh_provider_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(56, 110, 52, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
.zh_providers_ios .zh_provider_image {
    width: 100%;
    object-fit: contain;
    padding: 6%;
    transition: all 0.5s ease;
}
  
  .zh_providers_ios .zh_provider_title {
    font-size: 18px;
    margin-top: 5px;
    color: #386e34;
    transition: all 0.3s ease;
  }
  
  .zh_providers_ios .zh_provider_content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .zh_providers_ios .zh_provider_description {
    flex: 1;
    margin-bottom: 15px;
  }
  
  .zh_providers_ios .zh_provider_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(56, 110, 52, 0.15);
    border-color: #386e34;
  }
  
  .zh_providers_ios .zh_provider_card:hover .zh_provider_image {
    transform: scale(1.05);
  }
  
  .zh_providers_ios .zh_provider_card:hover .zh_provider_title {
    transform: translateX(5px);
  }
  
  .zh_providers_ios .zh_provider_footer {
    border-top: 1px solid rgba(56, 110, 52, 0.1);
    padding-top: 15px;
    margin-top: auto;
  }
  
  .zh_providers_ios .zh_section_title::after {
    background: linear-gradient(90deg, #386e34, #4a9644);
  }
  
  .zh_providers_ios .zh_provider_button {
    color: #386e34;
    font-weight: 600;
    position: relative;
    padding-right: 25px;
    transition: all 0.3s ease;
  }
  
  .zh_providers_ios .zh_provider_button::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0;
  }
  
  .zh_providers_ios .zh_provider_button:hover {
    color: #2a5226;
    padding-right: 30px;
  }
  
  .zh_providers_ios .zh_provider_button:hover::after {
    opacity: 1;
    right: 5px;
  }
  
  .zh_providers_ios .zh_provider_location svg {
    fill: #386e34;
  }
  
  /* 安卓项目模块 - 现代网格布局 */
  .zh_providers_android {
    background: linear-gradient(135deg, rgba(56, 110, 52, 0.05), rgba(56, 110, 52, 0.02));
  }
  
  .zh_providers_android .zh_providers_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .zh_providers_android .zh_provider_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .zh_providers_android .zh_provider_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #386e34;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s ease;
  }
  
.zh_providers_android .zh_provider_image {
    width: 100%;
    object-fit: cover;
    object-fit: contain;
    padding: 6%;
    transition: all 0.5s ease;
}
  
  .zh_providers_android .zh_provider_content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .zh_providers_android .zh_provider_title {
    color: #386e34;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
    transition: all 0.3s ease;
  }
  
  .zh_providers_android .zh_provider_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(56, 110, 52, 0.2);
    transition: all 0.3s ease;
  }
  
  .zh_providers_android .zh_provider_description {
    font-size: 14px;
    flex: 1;
    margin-bottom: 15px;
  }
  
  .zh_providers_android .zh_provider_footer {
    border-top: 1px dashed rgba(56, 110, 52, 0.1);
    padding-top: 15px;
    margin-top: auto;
  }
  
  .zh_providers_android .zh_provider_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(56, 110, 52, 0.15);
  }
  
  .zh_providers_android .zh_provider_card:hover::before {
    transform: scaleX(1);
  }
  
  .zh_providers_android .zh_provider_card:hover .zh_provider_image {
    transform: scale(1.05);
  }
  
  .zh_providers_android .zh_provider_card:hover .zh_provider_title::after {
    width: 60px;
    background: #386e34;
  }
  
  .zh_providers_android .zh_provider_button {
    background-color: transparent;
    color: #386e34;
    padding: 8px 15px;
    border: 1px solid #386e34;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .zh_providers_android .zh_provider_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #386e34;
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .zh_providers_android .zh_provider_button:hover {
    color: white;
  }
  
  .zh_providers_android .zh_provider_button:hover::before {
    width: 100%;
  }
  
  .zh_providers_android .zh_provider_location svg {
    fill: #386e34;
  }
  
  .zh_providers_android .zh_section_title::after {
    background: linear-gradient(90deg, #386e34, #4a9644);
  }
  
  /* 为什么选择我们部分 */
  .zh_why_us {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .zh_why_us::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #386e341d 0%, rgba(255, 122, 0, 0) 70%);
    border-radius: 50%;
  }
  
  .zh_why_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
  }
  
  .zh_why_card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .zh_why_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .zh_why_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: #386e341d;
    border-radius: 50%;
    margin-right: 25px;
  }
  
  .zh_why_icon svg {
    width: 35px;
    height: 35px;
    fill: #386e34;
  }
  
  .zh_why_content {
    flex: 1;
  }
  
  .zh_why_title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
  }
  
  .zh_why_description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
  }
  
  /* 统计数据部分 */
  .zh_stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #386e34, #3db135);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .zh_stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
  }
  
  .zh_stats_container {
    position: relative;
    z-index: 2;
  }
  
  .zh_stats_title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  .zh_stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .zh_stat_card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }
  
  .zh_stat_card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
  }
  
  .zh_stat_card_value {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .zh_stat_card_label {
    font-size: 18px;
    opacity: 0.9;
  }
  
  /* 呼叫行动部分 */
  .zh_cta {
    padding: 80px 0;
    text-align: center;
  }
  
  .zh_cta_container {
    background: linear-gradient(135deg, #386e341d, #FFF);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .zh_cta_container::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #386e341d 0%, rgba(255, 122, 0, 0) 70%);
    border-radius: 50%;
  }
  
  .zh_cta_title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
  }
  
  .zh_cta_description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
  }
  
  .zh_cta_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  /* 媒体查询 - 响应式设计 */
  @media (max-width: 1200px) {
    .zh_features_grid,
    .zh_providers_grid,
    .zh_providers_ios .zh_providers_grid,
    .zh_providers_android .zh_providers_grid,
    .zh_providers_smart .zh_providers_grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .zh_providers_smart .zh_provider_card {
      flex-direction: column;
    }
    
    .zh_providers_smart .zh_provider_image {
      width: 100%;
      height: 180px;
    }
  }
  
  @media (max-width: 992px) {
    .zh_hero_content,
    .zh_about_container {
      flex-direction: column;
    }
    
    .zh_hero_text,
    .zh_about_content {
      padding-right: 0;
      text-align: center;
      margin-bottom: 40px;
    }
    
    .zh_hero_buttons {
      justify-content: center;
    }
    
    .zh_hero_stats {
      justify-content: center;
    }
    
    .zh_about_title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .zh_about_list {
      display: inline-block;
      text-align: left;
    }
    
    .zh_why_grid {
      grid-template-columns: 1fr;
    }
    
    .zh_stats_grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .zh_features_grid,
    .zh_providers_grid,
    .zh_providers_ios .zh_providers_grid,
    .zh_providers_android .zh_providers_grid,
    .zh_providers_smart .zh_providers_grid {
      grid-template-columns: 1fr;
    }
    
    .zh_hero_title {
      font-size: 36px;
    }
    
    .zh_section_title,
    .zh_about_title {
      font-size: 32px;
    }
    
    .zh_hero_stats {
      flex-direction: column;
      gap: 20px;
    }
    
    .zh_stat_item {
      align-items: center;
    }
    
    .zh_cta_container {
      padding: 40px 20px;
    }
    
    .zh_cta_buttons {
      flex-direction: column;
      align-items: center;
    }
  } 